home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
com!online 2002 August
/
com! 2002.08.iso
/
software
/
GL6TRY&D
/
DATA1.CAB
/
PF_AppDir_Mod_JScript_GlobalScripts
/
KeyAction.scpt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-03-28
|
254 b
|
10 lines
CSKeyAction = new Array;
function CSKeyPress(ev) {
var code;
if(IsIE()) code = event.keyCode;
else code = ev.which;
var act = CSKeyAction[code];
if(typeof(act) != "undefined")
CSAction (new Array(act));
}
document.onkeypress = CSKeyPress;